how to add two array in single array without repetation in php

42

how to add two array in single array without repetation in php -

<?php
	$array1=array("CPU","Mouse","Monitor");
	$array2=array("Key-Board","Monitor","Printer");
	$array = array_unique(array_merge($array1, $array2));
	print_r($array);
?>

Comments

Submit
0 Comments